home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: 2005 Utilities
/
CHIP Utilities 2005.7z
/
CHIP Utilities 2005.iso
/
images
/
arachne.igz
/
arachne.img
/
LEVEL0
/
LPPRD.CAB
/
Bin
/
ping.bat
< prev
next >
Wrap
DOS Batch File
|
2005-01-16
|
783b
|
39 lines
@if "%debug%"=="" echo off
if "%1"=="" goto _help
if "%1"=="-?" goto _help
if "%1"=="/?" goto _help
if "%1"=="-h" goto _help
if "%1"=="/h" goto _help
if not exist %ramdrv%\bin\pprd.exe goto _nopprd
if "%wattcp.cfg%"=="" goto _nowattcp
if not exist %wattcp.cfg%\wattcp.cfg goto _nowattcp
if not exist %ramdrv%\bin\pktchk.com goto _npktchk
%ramdrv%\bin\pktchk.com 0x20 0xff >nul
if errorlevel 1 goto _nowattcp
:_npktchk
%ramdrv%\bin\pprd.exe -z%1
goto _end
:_help
echo.
echo PING: Simple WATTCP PING implementation by 'PPRD.EXE -z%%1'
echo EXAMPLE: ping 192.168.0.100
echo.
goto _end
:_nopprd
echo.
echo PING: (ERROR) Missing 'PPRD.EXE'
echo.
goto _end
:_nowattcp
echo.
echo PING: (ERROR) Missing 'WATTCP.CFG'
echo.
goto _end
:_end